Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

634578 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/99 - BlackJack Game/Static

Images/ cody/swapnilsparsh/30DaysOfJavaScript/99 - BlackJack Game/Static/Images/
15 Items
  • 4.png
  • A.png
  • 7.png
  • 9.png
  • 3.png
  • download.jpg
  • K.png
  • 8.png
  • sounds/ cody/swapnilsparsh/30DaysOfJavaScript/99 - BlackJack Game/Static/sounds/
    3 Items
  • cash.mp3
  • aww.mp3
  • swish.m4a
  • index.css cody/swapnilsparsh/30DaysOfJavaScript/99 - BlackJack Game/Static/index.css
    110 Views
    0 Comments
    .container-5 {
    border: 4px solid black;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    }
    .title {
    background-color: rgb(37, 40, 73);
    index.js cody/swapnilsparsh/30DaysOfJavaScript/99 - BlackJack Game/Static/index.js
    171 Views
    0 Comments
    let blackjackGame = {
    you: { scoreSpan: "#your-blackjack-result", div: "#your-box", score: 0 },
    dealer: {
    scoreSpan: "#dealer-blackjack-result",
    div: "#dealer-box",
    score: 0,
    },
    cards: ["2", "3", "4", "5", "6", "7", "8", "9", "10", "K", "J", "Q", "A"],